home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $Filename: grp.h $
- ** $Release$
- ** $Revision: 3.3 $
- ** $Date: 1994/04/07 20:23:52 $
- **
- ** Definitions of gid_t and group structure for 32 bit C compilers
- **
- ** Copyright © 1993,1994 AmiTCP/IP Group, <AmiTCP-Group@hut.fi>
- ** Helsinki University of Technology, Finland.
- ** All rights reserved.
- */
-
- /* The group structure */
- OBJECT group
- gr_name:PTR TO BYTE, /* Group name. */
- gr_passwd:PTR TO BYTE, /* Password. */
- gr_gid:LONG, /* Group ID. */
- gr_mem:PTR TO PTR TO BYTE /* Member list. */
-
- /*
- struct group *getgrgid(gid_t gid);
- struct group *getgrnam(const char * name);
-
- void setgrent(void);
- struct group *getgrent(void);
- void endgrent(void);
- */
-